home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / sre.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  12KB  |  326 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. '''Support for regular expressions (RE).
  5.  
  6. This module provides regular expression matching operations similar to
  7. those found in Perl.  It supports both 8-bit and Unicode strings; both
  8. the pattern and the strings being processed can contain null bytes and
  9. characters outside the US ASCII range.
  10.  
  11. Regular expressions can contain both special and ordinary characters.
  12. Most ordinary characters, like "A", "a", or "0", are the simplest
  13. regular expressions; they simply match themselves.  You can
  14. concatenate ordinary characters, so last matches the string \'last\'.
  15.  
  16. The special characters are:
  17.     "."      Matches any character except a newline.
  18.     "^"      Matches the start of the string.
  19.     "$"      Matches the end of the string.
  20.     "*"      Matches 0 or more (greedy) repetitions of the preceding RE.
  21.              Greedy means that it will match as many repetitions as possible.
  22.     "+"      Matches 1 or more (greedy) repetitions of the preceding RE.
  23.     "?"      Matches 0 or 1 (greedy) of the preceding RE.
  24.     *?,+?,?? Non-greedy versions of the previous three special characters.
  25.     {m,n}    Matches from m to n repetitions of the preceding RE.
  26.     {m,n}?   Non-greedy version of the above.
  27.     "\\\\"      Either escapes special characters or signals a special sequence.
  28.     []       Indicates a set of characters.
  29.              A "^" as the first character indicates a complementing set.
  30.     "|"      A|B, creates an RE that will match either A or B.
  31.     (...)    Matches the RE inside the parentheses.
  32.              The contents can be retrieved or matched later in the string.
  33.     (?iLmsux) Set the I, L, M, S, U, or X flag for the RE (see below).
  34.     (?:...)  Non-grouping version of regular parentheses.
  35.     (?P<name>...) The substring matched by the group is accessible by name.
  36.     (?P=name)     Matches the text matched earlier by the group named name.
  37.     (?#...)  A comment; ignored.
  38.     (?=...)  Matches if ... matches next, but doesn\'t consume the string.
  39.     (?!...)  Matches if ... doesn\'t match next.
  40.  
  41. The special sequences consist of "\\\\" and a character from the list
  42. below.  If the ordinary character is not on the list, then the
  43. resulting RE will match the second character.
  44.     \\number  Matches the contents of the group of the same number.
  45.     \\A       Matches only at the start of the string.
  46.     \\Z       Matches only at the end of the string.
  47.     \\b       Matches the empty string, but only at the start or end of a word.
  48.     \\B       Matches the empty string, but not at the start or end of a word.
  49.     \\d       Matches any decimal digit; equivalent to the set [0-9].
  50.     \\D       Matches any non-digit character; equivalent to the set [^0-9].
  51.     \\s       Matches any whitespace character; equivalent to [ \\t\\n\\r\\f\\v].
  52.     \\S       Matches any non-whitespace character; equiv. to [^ \\t\\n\\r\\f\\v].
  53.     \\w       Matches any alphanumeric character; equivalent to [a-zA-Z0-9_].
  54.              With LOCALE, it will match the set [0-9_] plus characters defined
  55.              as letters for the current locale.
  56.     \\W       Matches the complement of \\w.
  57.     \\\\       Matches a literal backslash.
  58.  
  59. This module exports the following functions:
  60.     match    Match a regular expression pattern to the beginning of a string.
  61.     search   Search a string for the presence of a pattern.
  62.     sub      Substitute occurrences of a pattern found in a string.
  63.     subn     Same as sub, but also return the number of substitutions made.
  64.     split    Split a string by the occurrences of a pattern.
  65.     findall  Find all occurrences of a pattern in a string.
  66.     compile  Compile a pattern into a RegexObject.
  67.     purge    Clear the regular expression cache.
  68.     escape   Backslash all non-alphanumerics in a string.
  69.  
  70. Some of the functions in this module takes flags as optional parameters:
  71.     I  IGNORECASE  Perform case-insensitive matching.
  72.     L  LOCALE      Make \\w, \\W, \\b, \\B, dependent on the current locale.
  73.     M  MULTILINE   "^" matches the beginning of lines as well as the string.
  74.                    "$" matches the end of lines as well as the string.
  75.     S  DOTALL      "." matches any character at all, including the newline.
  76.     X  VERBOSE     Ignore whitespace and comments for nicer looking RE\'s.
  77.     U  UNICODE     Make \\w, \\W, \\b, \\B, dependent on the Unicode locale.
  78.  
  79. This module also defines an exception \'error\'.
  80.  
  81. '''
  82. import sys
  83. import sre_compile
  84. import sre_parse
  85. __all__ = [
  86.     'match',
  87.     'search',
  88.     'sub',
  89.     'subn',
  90.     'split',
  91.     'findall',
  92.     'compile',
  93.     'purge',
  94.     'template',
  95.     'escape',
  96.     'I',
  97.     'L',
  98.     'M',
  99.     'S',
  100.     'X',
  101.     'U',
  102.     'IGNORECASE',
  103.     'LOCALE',
  104.     'MULTILINE',
  105.     'DOTALL',
  106.     'VERBOSE',
  107.     'UNICODE',
  108.     'error']
  109. __version__ = '2.2.1'
  110. I = IGNORECASE = sre_compile.SRE_FLAG_IGNORECASE
  111. L = LOCALE = sre_compile.SRE_FLAG_LOCALE
  112. U = UNICODE = sre_compile.SRE_FLAG_UNICODE
  113. M = MULTILINE = sre_compile.SRE_FLAG_MULTILINE
  114. S = DOTALL = sre_compile.SRE_FLAG_DOTALL
  115. X = VERBOSE = sre_compile.SRE_FLAG_VERBOSE
  116. T = TEMPLATE = sre_compile.SRE_FLAG_TEMPLATE
  117. DEBUG = sre_compile.SRE_FLAG_DEBUG
  118. error = sre_compile.error
  119.  
  120. def match(pattern, string, flags = 0):
  121.     '''Try to apply the pattern at the start of the string, returning
  122.     a match object, or None if no match was found.'''
  123.     return _compile(pattern, flags).match(string)
  124.  
  125.  
  126. def search(pattern, string, flags = 0):
  127.     '''Scan through string looking for a match to the pattern, returning
  128.     a match object, or None if no match was found.'''
  129.     return _compile(pattern, flags).search(string)
  130.  
  131.  
  132. def sub(pattern, repl, string, count = 0):
  133.     """Return the string obtained by replacing the leftmost
  134.     non-overlapping occurrences of the pattern in string by the
  135.     replacement repl.  repl can be either a string or a callable;
  136.     if a callable, it's passed the match object and must return
  137.     a replacement string to be used."""
  138.     return _compile(pattern, 0).sub(repl, string, count)
  139.  
  140.  
  141. def subn(pattern, repl, string, count = 0):
  142.     """Return a 2-tuple containing (new_string, number).
  143.     new_string is the string obtained by replacing the leftmost
  144.     non-overlapping occurrences of the pattern in the source
  145.     string by the replacement repl.  number is the number of
  146.     substitutions that were made. repl can be either a string or a
  147.     callable; if a callable, it's passed the match object and must
  148.     return a replacement string to be used."""
  149.     return _compile(pattern, 0).subn(repl, string, count)
  150.  
  151.  
  152. def split(pattern, string, maxsplit = 0):
  153.     '''Split the source string by the occurrences of the pattern,
  154.     returning a list containing the resulting substrings.'''
  155.     return _compile(pattern, 0).split(string, maxsplit)
  156.  
  157.  
  158. def findall(pattern, string, flags = 0):
  159.     '''Return a list of all non-overlapping matches in the string.
  160.  
  161.     If one or more groups are present in the pattern, return a
  162.     list of groups; this will be a list of tuples if the pattern
  163.     has more than one group.
  164.  
  165.     Empty matches are included in the result.'''
  166.     return _compile(pattern, flags).findall(string)
  167.  
  168. if sys.hexversion >= 33685504:
  169.     __all__.append('finditer')
  170.     
  171.     def finditer(pattern, string, flags = 0):
  172.         '''Return an iterator over all non-overlapping matches in the
  173.         string.  For each match, the iterator returns a match object.
  174.  
  175.         Empty matches are included in the result.'''
  176.         return _compile(pattern, flags).finditer(string)
  177.  
  178.  
  179.  
  180. def compile(pattern, flags = 0):
  181.     '''Compile a regular expression pattern, returning a pattern object.'''
  182.     return _compile(pattern, flags)
  183.  
  184.  
  185. def purge():
  186.     '''Clear the regular expression cache'''
  187.     _cache.clear()
  188.     _cache_repl.clear()
  189.  
  190.  
  191. def template(pattern, flags = 0):
  192.     '''Compile a template pattern, returning a pattern object'''
  193.     return _compile(pattern, flags | T)
  194.  
  195.  
  196. def escape(pattern):
  197.     '''Escape all non-alphanumeric characters in pattern.'''
  198.     s = list(pattern)
  199.     for i in range(len(pattern)):
  200.         c = pattern[i]
  201.         None if c <= c else None if c <= c else None if c <= c else c == '\x00'
  202.     
  203.     return pattern[:0].join(s)
  204.  
  205. _cache = { }
  206. _cache_repl = { }
  207. _pattern_type = type(sre_compile.compile('', 0))
  208. _MAXCACHE = 100
  209.  
  210. def _compile(*key):
  211.     cachekey = (type(key[0]),) + key
  212.     p = _cache.get(cachekey)
  213.     if p is not None:
  214.         return p
  215.     
  216.     (pattern, flags) = key
  217.     if isinstance(pattern, _pattern_type):
  218.         return pattern
  219.     
  220.     if not sre_compile.isstring(pattern):
  221.         raise TypeError, 'first argument must be string or compiled pattern'
  222.     
  223.     
  224.     try:
  225.         p = sre_compile.compile(pattern, flags)
  226.     except error:
  227.         v = None
  228.         raise error, v
  229.  
  230.     if len(_cache) >= _MAXCACHE:
  231.         _cache.clear()
  232.     
  233.     _cache[cachekey] = p
  234.     return p
  235.  
  236.  
  237. def _compile_repl(*key):
  238.     p = _cache_repl.get(key)
  239.     if p is not None:
  240.         return p
  241.     
  242.     (repl, pattern) = key
  243.     
  244.     try:
  245.         p = sre_parse.parse_template(repl, pattern)
  246.     except error:
  247.         v = None
  248.         raise error, v
  249.  
  250.     if len(_cache_repl) >= _MAXCACHE:
  251.         _cache_repl.clear()
  252.     
  253.     _cache_repl[key] = p
  254.     return p
  255.  
  256.  
  257. def _expand(pattern, match, template):
  258.     template = sre_parse.parse_template(template, pattern)
  259.     return sre_parse.expand_template(template, match)
  260.  
  261.  
  262. def _subx(pattern, template):
  263.     template = _compile_repl(template, pattern)
  264.     if not template[0] and len(template[1]) == 1:
  265.         return template[1][0]
  266.     
  267.     
  268.     def filter(match, template = template):
  269.         return sre_parse.expand_template(template, match)
  270.  
  271.     return filter
  272.  
  273. import copy_reg
  274.  
  275. def _pickle(p):
  276.     return (_compile, (p.pattern, p.flags))
  277.  
  278. copy_reg.pickle(_pattern_type, _pickle, _compile)
  279.  
  280. class Scanner:
  281.     
  282.     def __init__(self, lexicon, flags = 0):
  283.         BRANCH = BRANCH
  284.         SUBPATTERN = SUBPATTERN
  285.         import sre_constants
  286.         self.lexicon = lexicon
  287.         p = []
  288.         s = sre_parse.Pattern()
  289.         s.flags = flags
  290.         for phrase, action in lexicon:
  291.             p.append(sre_parse.SubPattern(s, [
  292.                 (SUBPATTERN, (len(p) + 1, sre_parse.parse(phrase, flags)))]))
  293.         
  294.         p = sre_parse.SubPattern(s, [
  295.             (BRANCH, (None, p))])
  296.         s.groups = len(p)
  297.         self.scanner = sre_compile.compile(p)
  298.  
  299.     
  300.     def scan(self, string):
  301.         result = []
  302.         append = result.append
  303.         match = self.scanner.scanner(string).match
  304.         i = 0
  305.         while None:
  306.             m = match()
  307.             if not m:
  308.                 break
  309.             
  310.             j = m.end()
  311.             if i == j:
  312.                 break
  313.             
  314.             action = self.lexicon[m.lastindex - 1][1]
  315.             if callable(action):
  316.                 self.match = m
  317.                 action = action(self, m.group())
  318.             
  319.             if action is not None:
  320.                 append(action)
  321.             
  322.             i = j
  323.         return (result, string[i:])
  324.  
  325.  
  326.